home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / Development Tools & Languages / Bits o' MacApp Code / Light Gray Adorner / TLightGrayAdorner.h < prev   
Encoding:
C/C++ Source or Header  |  1993-06-10  |  353 b   |  17 lines  |  [TEXT/MPS ]

  1. #ifndef __LIGHTGRAYADORNER__
  2. #define __LIGHTGRAYADORNER__
  3.  
  4. class TLtGrayAdorner: public TAdorner
  5. {
  6.     private:
  7.         PixPatHandle fLtGrayPat;
  8.         PixPatHandle fWhitePat;
  9.         
  10.     public:
  11.         virtual pascal void Initialize();
  12.         virtual pascal void Free();
  13.         virtual pascal void ILtGrayAdorner();
  14.         virtual pascal void Draw(TView* itsView, const VRect& area);
  15. };
  16.  
  17. #endif